Executable Statements
Pascal C/C++
w x := y + z x = y + z;
lNOTE 1: This is an instance of the C expression much more flexible than its Pascal equivalent.
begin
x := y + z;
w := x
end
w
lNOTE 2: There is never a semicolon after the terminating }, but the last statement inside the compound statement does end with a semicolon
{
x = y + z;
w = x;
}
l